CXXFLAGS = -Wall -g

coord.o: ../coord.cpp	
	$(CXX) $(CXXFLAGS) -c -o coord.o ../coord.cpp

test_coord.o:  ../coord.h test.h

test_coord: test_coord.o coord.o
	g++ -o test_coord test_coord.o coord.o

test: test_coord
	./test_coord